home *** CD-ROM | disk | FTP | other *** search
/ 404 Jogos / CLJG.iso / Diversos / fromspacelove.swf / scripts / frame_7 / PlaceObject2_21_6 / CLIPACTIONRECORD onClipEvent(enterFrame).as next >
Encoding:
Text File  |  2006-06-13  |  292 b   |  18 lines

  1. onClipEvent(enterFrame){
  2.    if(!Key.isDown(32))
  3.    {
  4.       SpaceReleased = true;
  5.    }
  6.    if(Key.isDown(32) and SpaceReleased)
  7.    {
  8.       if(_parent.Lives > 0)
  9.       {
  10.          _parent.gotoAndStop(4);
  11.       }
  12.       else
  13.       {
  14.          _parent.gotoAndStop(9);
  15.       }
  16.    }
  17. }
  18.